home *** CD-ROM | disk | FTP | other *** search
- head 1.3;
- branch ;
- access ;
- symbols sprited:1.3.1;
- locks ; strict;
- comment @ * @;
-
-
- 1.3
- date 90.11.16.00.25.06; author shirriff; state Exp;
- branches 1.3.1.1;
- next 1.2;
-
- 1.2
- date 90.11.06.13.57.53; author rab; state Exp;
- branches ;
- next 1.1;
-
- 1.1
- date 89.07.08.14.56.14; author nelson; state Exp;
- branches ;
- next ;
-
- 1.3.1.1
- date 91.12.02.21.22.40; author kupfer; state Exp;
- branches ;
- next ;
-
-
- desc
- @Initial version from DECWRL.
- @
-
-
- 1.3
- log
- @Fixed ifdefs.
- @
- text
- @/* @@(#)varargs.h 4.3 (ULTRIX) 11/2/88 */
- /* ------------------------------------------------------------------ */
- /* | Copyright Unpublished, MIPS Computer Systems, Inc. All Rights | */
- /* | Reserved. This software contains proprietary and confidential | */
- /* | information of MIPS and its suppliers. Use, disclosure or | */
- /* | reproduction is prohibited without the prior express written | */
- /* | consent of MIPS. | */
- /* ------------------------------------------------------------------ */
- /* $Header: /sprite/src/lib/include/ds3100.md/RCS/varargs.h,v 1.2 90/11/06 13:57:53 rab Exp $ */
-
- /* @@(#)varargs.h 1.2 */
- #ifndef _VARARGS_H
- #define _VARARGS_H
-
- #ifndef _VA_LIST
- #define _VA_LIST
- typedef char *va_list;
- #endif
-
- #define va_dcl int va_alist;
- #define va_start(list) list = (char *) &va_alist
- #define va_end(list)
-
- #ifdef lint /* complains about constant in conditional context */
-
- #define va_arg(list, mode) ((mode *)(list += sizeof(mode)))[-1]
-
- #else /* !lint */
-
- #define va_arg(list, mode) ((mode *)(list = \
- (char *) (sizeof(mode) > 4 ? ((int)list + 2*8 - 1) & -8 \
- : ((int)list + 2*4 - 1) & -4)))[-1]
-
- #endif /* lint */
- #endif /* _VARARGS_H */
- @
-
-
- 1.3.1.1
- log
- @Initial branch for Sprite server.
- @
- text
- @d9 1
- a9 1
- /* $Header: /sprite/src/lib/include/ds3100.md/RCS/varargs.h,v 1.3 90/11/16 00:25:06 shirriff Exp $ */
- @
-
-
- 1.2
- log
- @Put in ifdef so include is idempotent.
- @
- text
- @d9 1
- a9 1
- /* $Header: /sprite/src/lib/include/ds3100.md/RCS/varargs.h,v 1.1 89/07/08 14:56:14 nelson Exp Locker: rab $ */
- d12 5
- a16 1
- #ifdef _VARARGS_H
- d18 2
- @
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @d9 1
- a9 1
- /* $Header: varargs.h,v 1.1 89/06/02 14:35:46 mnelson Exp $ */
- d12 1
- d29 1
- @
-